home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Caml Light 0.61 / Binaries / examples / basics / README < prev    next >
Encoding:
Text File  |  1993-09-24  |  409 b   |  15 lines  |  [TEXT/ttxt]

  1. Three all-time favorites: Fibonacci, Eratosthene's sieve, and the Unix
  2. "wc" utility, presented as standalone programs.
  3.  
  4. To compile: either "make", or, by hand:
  5.  
  6.     camlc -o fib fib.ml
  7.     camlc -o wc wc.ml
  8.     camlc -o sieve sieve.ml
  9.  
  10. To run:
  11.  
  12.     camlrun fib 10              # or some other number
  13.     camlrun wc fib.ml           # or some other files
  14.     camlrun sieve 1000          # or some other number
  15.